/* philosophy.css - Bespoke Architecture */

.unique-philosophy {
    background-color: var(--primary-dark, rgb(13, 13, 36));
    color: white;
}

.phil-hero {
    height: 50vh;
    background: radial-gradient(circle, rgba(255,165,0,0.1) 0%, rgba(13, 13, 36, 1) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid orange;
}

.phil-hero-content h1 {
    font-size: 3.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.phil-hero-content p {
    font-size: 1.2rem;
    color: orange;
    max-width: 600px;
    margin: 0 auto;
}

.zigzag-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .zigzag-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Reversing the alternate rows on desktop grids */
@media screen and (min-width: 768px) {
    .zigzag-row.reverse .zigzag-visual {
        order: 2;
    }
    .zigzag-row.reverse .zigzag-text {
        order: 1;
        text-align: right;
    }
}

.zigzag-visual {
    background: rgba(255,165,0,0.05);
    border: 1px solid rgba(255,165,0,0.3);
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5) inset;
}

.zigzag-visual h2 {
    font-size: 6rem;
    color: rgba(255,165,0,0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    margin: 0;
}

.zigzag-visual i {
    font-size: 5rem;
    color: orange;
    z-index: 2;
}

.zigzag-text h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.zigzag-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}
